home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / punBB_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  70 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  This script is released under the GNU GPLv2
  4. #
  5.  
  6. if(description)
  7. {
  8.   script_id(15936);
  9.   script_version("$Revision: 1.4 $");
  10.   script_name(english:"PunBB detection");
  11.  
  12.   desc["english"] = "
  13. This script detects whether the remote host is running PunBB and
  14. extracts the version number and location if found.
  15.     
  16. Risk factor : None";
  17.  
  18.   script_description(english:desc["english"]);
  19.  
  20.   script_summary(english:"Checks for presence of PunBB");
  21.   script_category(ACT_GATHER_INFO);
  22.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  23.  
  24.   script_family(english:"CGI abuses");
  25.  
  26.   script_dependencie("find_service.nes", "http_version.nasl");
  27.   script_require_ports("Services/www");
  28.   exit(0);
  29. }
  30.  
  31. include("http_func.inc");
  32. include("http_keepalive.inc");
  33.  
  34. port = get_http_port(default:80);
  35. if (!get_port_state(port)) exit(0);
  36. if (http_is_dead(port:port)) exit(0);
  37. if (!can_host_php(port:port)) exit(0);
  38.  
  39. foreach dir (make_list(cgi_dirs(), "")) {
  40.   req = http_get(item:string(dir, "/index.php"), port:port);
  41.   r = http_keepalive_send_recv(port:port, data:req);
  42.   if ( r == NULL ) exit(0);
  43.  
  44.   pat = "Powered by .*http://www\.punbb\.org/.>PunBB";
  45.   if ( egrep(pattern:pat, string:r) ) {
  46.     if ( ! dir ) dir = "/";
  47.     version=eregmatch(pattern:string(".*", pat, "</a><br>.+Version: (.+)<br>.*"),string:r);
  48.     # nb: starting with 1.2, version display is optional and off by default
  49.     #     but it's still useful to know that it's installed.
  50.     if ( version == NULL ) {
  51.       version = "unknown";
  52.       report = string("An unknown version of PunBB is installed under ", dir, " on the remote host.");
  53.     }
  54.     else {
  55.       version = version[1];
  56.       report = string("PunBB version ", version, " is installed under ", dir, " on the remote host.");
  57.     }
  58.     report = report + "
  59.  
  60. PunBB is a fast and lightweight PHP-powered discussion board. See
  61. http://www.punbb.org/ for more information.
  62.  
  63. Risk factor : None";
  64.  
  65.     security_note(port:port, data:report);
  66.     set_kb_item(name:"www/" + port + "/punBB", value:version + " under " + dir);
  67.     exit(0);
  68.   }
  69. }
  70.